home *** CD-ROM | disk | FTP | other *** search
Text File | 1993-05-25 | 1.9 KB | 83 lines | [TEXT/MPS ] |
- ;******************************************************************************
- ;*
- ;* Folder Name: BS
- ;* File Name: SysBeep.a
- ;*
- ;* Copyright: © 1993 Siren Enterprises, Inc, all rights reserved.
- ;*
- ;* Description: PC-relative holder for the SysBeep patch.
- ;*
- ;******************************************************************************
- ;* A U T H O R I D E N T I T Y
- ;******************************************************************************
- ;*
- ;* Initials Name
- ;* -------- -----------------------------------------------
- ;* KW Ken Wieschhoff
- ;*
- ;******************************************************************************
- ;* R E V I S I O N H I S T O R Y
- ;******************************************************************************
- ;*
- ;* Date Time Author Description
- ;* -------- ----- ------ ---------------------------------------------
- ;* 05/17/93 21:06 KW Original version.
- ;*
- ;******************************************************************************
-
- INCLUDE 'SysErr.a'
- INCLUDE 'QuickEqu.a'
- INCLUDE 'SysEqu.a'
- INCLUDE 'Traps.a'
- INCLUDE 'ToolEqu.a'
-
- ;
- ; pascal long * OldSysBeep(void);
- ;
- ; Stores the prior SysBeep patch.
- ;
-
- OLDSYSBEEP PROC EXPORT
-
- STRING ASIS
-
- bsr.s continue ; pushes storage area address on stack
- storage dc.l 0 ; Storage area
- continue move.l (sp)+,a0 ; Pop address into a0
- move.l a0,4(sp) ; Place function result
- rts
-
- ENDP
- ;
- ; pascal long * OldA5(void);
- ;
- ; Stores the prior A5 World
- ;
-
- OLDA5 PROC EXPORT
-
- STRING ASIS
-
- bsr.s continue ; pushes storage area address on stack
- storage dc.l 0 ; Storage area
- continue move.l (sp)+,a0 ; Pop address into a0
- move.l a0,4(sp) ; Place function result
- rts
-
-
- ENDP
- ;
- ; pascal long GetA5(void);
- ;
- ; Return the current value of A5.
- ;
- ;
- GETA5 PROC EXPORT
-
- MOVE.L A5,4(A7) ; Get A5 as function result
- RTS
-
- ENDP
-
- END
-